home *** CD-ROM | disk | FTP | other *** search
/ Trading on the Edge / Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin / pc / shared / snns / snnsv3_0.z / snnsv3_0 / SNNSv3.0 / build next >
Text File  |  1993-03-25  |  2KB  |  72 lines

  1. #!/bin/csh
  2.  
  3. # ****************************************************************************
  4. #  FILE     : build
  5. #  SHORTNAME: build
  6.  
  7. #  PURPOSE  : Shell scipt to call make 
  8. #          1) kernel in the directory kernel/source
  9. #          2) X user interface in xgui/source
  10. #          3) compiler in compiler/source
  11.  
  12. #  AUTHOR   : Tilman Sommer, Niels Mache, Thomas Korb
  13. #  DATE     : 22.05.91 (A. Zell)
  14.  
  15. #  MODIFICATIONS:
  16. #  22.05.91: cosmetic changes
  17.  
  18. #             (c) 1990-93 by SNNS-Group
  19. #             Institut fuer parallele und verteilte Hoechstleistungsrechner
  20. #             Universitaet Stuttgart
  21. # ****************************************************************************
  22.  
  23.  
  24.  
  25. echo "************************************************"
  26. echo "*                                              *"
  27. echo "*  SNNS  - Stuttgart Neural Network Simulator  *"
  28. echo "*                                              *"
  29. echo "*         building SNNS version 3.0 ...        *"
  30. echo "*                                              *"
  31. echo "************************************************"
  32. echo ""
  33. set rootdir = `echo $cwd`
  34. if ( $1 == 'all' || $1 == 'kernel' || $1 == 'sim') then
  35.     echo "Building kernel ... "
  36.     cd kernel/sources
  37.     echo "Compiling ..."
  38.     make all
  39.     echo "Installing ..."
  40.     make install
  41.     cd ../.. 
  42.     echo "Done."
  43.     echo ""
  44. else
  45. endif
  46.  
  47. if ( $1 == 'all' || $1 == 'xgui' || $1 == 'sim') then
  48.     echo "Building XGUI ... "
  49.     cd xgui/sources
  50.     echo "Compiling ..."
  51.     make all
  52.     echo "Installing ..."
  53.     make install
  54.     cd ../.. 
  55.     echo "Done."
  56.     echo ""
  57. else
  58. endif
  59.  
  60. #if ( $1 == 'all' || $1 == 'compiler') then
  61. #    echo "Building compiler ... "
  62. #    cd compiler/sources 
  63. #    echo "Compiling ..."
  64. #    make all
  65. #    echo "Installing ..."
  66. #    make install
  67. #    cd ../.. 
  68. #    echo "Done."
  69. #    echo ""
  70. #else
  71. #endif
  72.